feat: add env var to disable file change summaries#200
feat: add env var to disable file change summaries#200davdroman wants to merge 1 commit intorynfar:mainfrom
Conversation
7ab6b22 to
1ce61b8
Compare
|
thanks for this submission, i am going to adopt this with one minor change. |
|
Thanks for this — the motivation and implementation were solid. We landed it in #209 with three small adjustments:
const trackFileChanges = !(process.env.MERIDIAN_NO_FILE_CHANGES ?? process.env.CLAUDE_PROXY_NO_FILE_CHANGES)4 regression tests added README env var table updated Closing in favour of #209, now merged to |
Summary
MERIDIAN_NO_FILE_CHANGESenv var to disable the "Files changed" summary appended to responsesMotivation
The file change summary introduced in #189 is too noisy for some setups and should be opt-in, or at the very least let users opt out. This adds the opt-out mechanism via env var.
Usage